home *** CD-ROM | disk | FTP | other *** search
/ Mac Mania 4 / MacMania 4.toast / / Internet software / HTML Voc 1.3 / HTML Vocabulary 1.3 / HTML Vocabulary 1.3.rsrc / TEXT_1600_Maps.txt < prev    next >
Text File  |  1996-05-29  |  3KB  |  120 lines

  1.  
  2.  About Maps    
  3.  
  4.  
  5.  
  6. Webmaps is also called clickable pictures. When the
  7.  user click on the picture, he's linked to different
  8.  pages depending on where on the picture he clicked.
  9.  A map isn't written in the same way as a HTML file.
  10.  
  11.  Webmaps consists of two files, a gif picture and the
  12.  map file. It's written in a special file, and must be
  13.  supported by the server. Talk to the administrator
  14.  to find out if the server support maps. If it does,
  15.  it can either be in CERN format, NCSA format or both.
  16.  CERN is the company which originally developed the
  17.  WWW, and NCSA has created, for example, Mosaic. Maps
  18.  uses a cgi-script (like a program) to run, but you
  19.  can define the map within the HTML file if the user
  20.  has a newer browser such like Netscape 2.0. These
  21.  maps is called Client Side Image maps.
  22.  
  23.  
  24.  
  25.  
  26.  NCSA format    
  27.  
  28.  
  29.  
  30. In the NCSA format, all objects are separated with
  31.  return characters. The list of objects starts with
  32.  the objects ordered from the front to the back. It
  33.  ends with the default url.
  34.  
  35.  # text
  36.  Defines a comment, not used by the browser.
  37.  
  38.  rect url x,y x,y
  39.  Defines a rectangle.
  40.  
  41.  circle url x,y x,y
  42.  Defines a circle. x,y is the center point and the edge point.
  43.  
  44.  
  45.  
  46. oval url x,y x,y
  47.  Defines an oval. x,y x,y is the rectangle of the oval.
  48.  
  49.  poly url x,y...x,y
  50.  Defines a polugon. Each 'x,y' specifies a point.
  51.  
  52.  point url x,y
  53.  Defines a point at x,y.
  54.  
  55.  default url
  56.  Defines the default URL (locations where no other
  57.  objects are defined. Must be after the objects.
  58.  
  59.  
  60.  
  61. url is always the URL (address) to the page which
  62.  will be linked.
  63.  
  64.  CERN format    
  65.  
  66.  
  67.  In the CERN format, all objects are separated with
  68.  return characters. The list of objects starts with
  69.  the default url, followed by the objects ordered
  70.  from the back to the front.
  71.  
  72.  
  73. # text
  74.  Defines a comment, not used by the browser.
  75.  
  76.  default url
  77.  Defines the default URL (locations where no other
  78.  objects are defined. Must be before the objects.
  79.  
  80.  rect (x,y) (x,y) url
  81.  Defines a rectangle.
  82.  
  83.  circle (x,y) rad url
  84.  Defines a circle specified by it's center point and radius.
  85.  
  86.  
  87. poly (x,y)...(x,y) url
  88.  Defines a new polygon specified by a number of (x,y)'s.
  89.  
  90.  url is always the URL (address) to the page which
  91.  will be linked.
  92.  
  93.  Client Side map format    
  94.  
  95.  
  96.  Each object is separated by a linebreak (return). The
  97.  objects is stored in order from the back to the front.
  98.  If the user clicks in an area which is not specified as
  99.  an object, there will be no action. See the 'picture'
  100.  chapter for more about how to call and use these maps.
  101.  
  102.  <MAP NAME=text>
  103.  Start tag of the map definition. Must end with </MAP>.
  104.  NAME is the anchor, used by the IMG tag to locate the map
  105.  
  106.  <AREA [SHAPE=rect|circ[le]|poly[gon]] COORDS=x,y,x,y
  107.  [NOHREF] [HREF=url] [ALT=text] [TARGET=text]>
  108.  Indicates a map object. If SHAPE is not given, RECT will
  109.  be used. HREF is the url to which a click in the object
  110.  will point. NOHREF will not make an action. COORDS is the
  111.  coordinates for the object. With the shape RECT, it's
  112.  written as "left,top,right,bottom". With the shape CIRCLE,
  113.  use "center_x,center_y,radius" and with the shape POLYGON,
  114.  use "x1,y1,x2,y2...". ALT is the text to be showed if the
  115.  browser can't display the picture, the same as ALT in IMG.
  116.  TARGET is a Netscape extension which opens the link in a
  117.  (new) window or frame named "text". If text is "_blank",
  118.  the window will be unamed. If it is "_self", the current
  119.  window or frame will be used.
  120.